home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
progs
/
editor
/
frexxed
/
fpl
/
simpleindent.fpl
< prev
next >
Wrap
Text File
|
1995-08-06
|
352b
|
19 lines
export void Indent()
{
int counter=0;
int column=ReadInfo("byte_position");
int chara;
string output="\n";
while (counter<column) {
chara=GetChar(counter);
if (chara==' ' || chara=='\t')
output=joinstr(output, itoc(chara));
else
break;
counter++;
}
Output(output);
}
AssignKey("Indent();", "Shift 'Return'");